home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
600 Games
/
600games.iso
/
Estrategia
/
scooby.swf
/
scripts
/
DefineButton2_500
/
BUTTONCONDACTION on(release).as
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2006-06-13
|
243 b
|
15 lines
on(release){
var newnum = month + 1;
if(newnum > 12)
{
newnum = 12;
}
month = newnum;
var newstring = month;
if(month < 10)
{
newstring = "0" + newstring;
}
month_txt.text = newstring;
}